home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.20030409-20031118
/
000105_greg180@aol.com_Tue May 27 12:50:48 EDT 2003.msg
< prev
next >
Wrap
Text File
|
2020-01-01
|
2KB
|
73 lines
Article: 14330 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!panix!news.stealth.net news.stealth.net!news.stealth.net!cyclone1.gnilink.net!ngpeer.news.aol.com!audrey-m2.news.aol.com!not-for-mail
Lines: 60
X-Admin: news@aol.com
From: greg180@aol.com (Greg180)
Newsgroups: comp.protocols.kermit.misc
Date: 27 May 2003 16:38:09 GMT
Organization: AOL http://www.aol.com
Subject: server mode help needed
Message-ID: <20030527123809.04226.00000370@mb-m15.aol.com>
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14330
Windows 98/Kermit 95 2.0.1
The script show below has worked well for some time. For unknown reasons we
have recently found our server machine in an unbroken cycle as displayed on the
server display screen.
Bad Sequence Number
Check Sum Error
the above appearing several time in sequence then followed by
FAILURE: Too many retries
This sequence continues until we Ctrl\C out of Kermit.
I have been able to create this same scenario by starting the script and then
placing a voice call to the host, and hanging up the voice call after the modem
starts it handshake.
During the duration, the line to the modem remains busy.
I am reading the manual looking for a way to trap such errors, or a server
setting which will force an exit from server mode.
Any suggestions as to diagnostic work or an appropiate fix via script will be
very much welcomed.
Thanks,
Current script follows:
echo ----------------------------\013
echo - elcomm.ksx started -\013
echo ----------------------------\013
set speed 115200
;---------------------------
; modem change
set flow rts/cts
set modem speed-matching off
set speed 14
; --------------------------
ENABLE DELETE
set server login CPS CPS1
set server display on
set file collision overwrite
cd f:\wtdcom
while true {
clear command-screen
echo Now listening.....(ver 2.1).\013
echo
echo Two quick Ctrl-C's to fully escape Kermit
echo
sleep 1
answer 0
if success server
}
echo out of the loop.. 20 sec to end\013
sleep 20